home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / xschem28.lzh / SRC / MAKEFILE.ST < prev    next >
Encoding:
Text File  |  1991-11-23  |  498 b   |  21 lines

  1. # makefile for Atari ST with gcc
  2.  
  3. CC = gcc
  4. CFLAGS= -O -Datarist=1 -I.
  5. LIBS = -lpml
  6.  
  7. OBJ1=xscheme.o xsdmem.o xsimage.o xsio.o xsobj.o xsprint.o xsread.o xssym.o \
  8. xsfun1.o xsfun2.o xsmath.o ststuff.o
  9.  
  10. OBJ2=xsinit.o xscom.o xsint.o
  11.  
  12. xscheme:    $(OBJ1) $(OBJ2) xsftab.o
  13.     $(CC) $(CFLAGS) -o xscheme.ttp $(OBJ1) $(OBJ2) xsftab.o $(LIBS)
  14.  
  15. $(OBJ1):    xscheme.h xsproto.h
  16. $(OBJ2):    xscheme.h xsproto.h xsbcode.h
  17. xsftab.o:    xscheme.h xsproto.h osdefs.h osptrs.h
  18.  
  19. clean:
  20.     rm -f *.o xscheme.ttp
  21.